home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 2 / Atari Mega Archive CD - Volume 2.iso / minix / up1510b.tgz / up1510b / src / lib / posix / rmdir.c < prev    next >
C/C++ Source or Header  |  1990-07-20  |  102b  |  8 lines

  1. #include <lib.h>
  2.  
  3. PUBLIC int rmdir(name)
  4. _CONST char *name;
  5. {
  6.   return(callm3(FS, RMDIR, 0, name));
  7. }
  8.